home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / machserver / 1.098 / include / sun3.md / setjmp.h < prev    next >
C/C++ Source or Header  |  1991-06-06  |  277b  |  16 lines

  1. /*    setjmp.h    4.1    83/05/03    */
  2. /* $Header$ */
  3.  
  4. #include <cfuncproto.h>
  5.  
  6.  
  7. /*
  8.  * Only 10 words are needed for the VAX, but 15 for the Sun.  Use the
  9.  * larger of the two.
  10.  */
  11.  
  12. typedef int jmp_buf[15];
  13.  
  14. extern int setjmp _ARGS_((jmp_buf));
  15. extern void longjmp _ARGS_((jmp_buf, int));
  16.